Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Writer Namespace / PdfStreamWriterBase Class / AddDictEntryString Method / AddDictEntryString(PdfName,IList<Byte>) Method

In This Topic
    AddDictEntryString(PdfName,IList<Byte>) Method
    In This Topic
    Adds string dict entry, string is written as PDF string i.e. like (BlaBla). If string contains chars with code greater than 126 it encoded as unicode. String is encoded if encoding specified for document.
    Syntax
    'Declaration
     
    Public Overloads Sub AddDictEntryString( _
       ByVal key As PdfName, _
       ByVal value As System.Collections.Generic.IList(Of Byte) _
    ) 
    public void AddDictEntryString( 
       PdfName key,
       System.Collections.Generic.IList<byte> value
    )

    Parameters

    key
    value
    See Also